home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Scheduled Tasks 2.xpl < prev    next >
Text File  |  2002-10-29  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\Scheduled Tasks"
  5. "NAME"="Logfile Size"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Size (KB)"
  9. "DESCRIPTION 1"="All new Windows versions contain the "Scheduled Tasks" service, which can be used to schedule program execution. In Windows XP (and upwards), you can view the contents by opening Explorer, open "My Computer", open "Control Panel" and finally "Scheduled Tasks". In older Windows versions, the "Scheduled Tasks" folder is visible directly from Explorer."
  10. "DESCRIPTION 2"="This setting can be used to control the size of the logfile. By default, it is 32 KB."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="Also known as "Scheduling Agent" "
  15.  
  16.  
  17. sPath="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SchedulingAgent\MaxLogSizeKB"
  18.  
  19. Sub Plugin_Initialize 
  20.  s=RegReadValue(sPath)
  21.  SetUIElement 1,s
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  i=GetUIElement(1)
  29.  if len(i)>0 then 
  30.     i=CLng(i)
  31.     if i>0 then
  32.        Call RegWriteValue(sPath,i,2)
  33.     else
  34.       Call MsgError("Please enter a value bigger than 0 KB")
  35.     end if
  36.     
  37.  else
  38.     Call MsgError("Please enter a value")
  39.  end if
  40.  
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.